home *** CD-ROM | disk | FTP | other *** search
/ Workbench Add-On / Workbench Add-On - Volume 1.iso / Dev / ACE / Install < prev    next >
Text File  |  1995-11-24  |  2KB  |  67 lines

  1. (if (= @language "deutsch")
  2.     (
  3.         (SET Intro  "Wilkommen zum Installer-Script für ACE-BASIC.\n\n WARNUNG: ACE-Basic braucht ca 4MB freien Plattenplatz.")
  4.         (SET Where  "Wohin soll ACE-BASIC hinkopiert werden ? Es wird ein Verzeichnis namens ACE angelegt.")
  5.         (SET Addit
  6.             (CAT "Nun Werden folgende Zeilen in ihre User-Startup angehängt.\n\n"
  7.  
  8.                  "assign ACElib:     ACE:lib      \n"
  9.                  "assign ACEbmaps:   ACE:bmaps    \n"
  10.                  "assign ACEinclude: ACE:include  \n"
  11.             )
  12.         )
  13.     )
  14. )
  15.  
  16. (if (= @language "english")
  17.     (
  18.         (SET Intro  "Welcome to the installer-script for ACE-BASIC.\n\n WARNING: ACE-BASIC needs about 4MB on your hard-disk.")
  19.         (SET Where  "Where do you want to place ACE-BASIC ? A drawer called ACE will be created.")
  20.         (SET Addit   "Now some lines will be added to your s:user-startup\n")
  21.     )
  22. )
  23.  
  24.  
  25. (MESSAGE Intro)
  26.  
  27. (SET BasDir
  28.     (ASKDIR
  29.         (PROMPT Where)
  30.         (HELP   "")
  31.         (DEFAULT "sys:")
  32.     )
  33. )
  34.  
  35. (SET BinDir (TACKON BasDir "ACE"))
  36.  
  37. (RUN (CAT "makedir \""BinDir"\""))
  38.  
  39. (COPYFILES
  40.     (SOURCE ":Dev/ACE/")
  41.     (DEST   BinDir)
  42.     (ALL)
  43.     (INFOS)
  44. )
  45.  
  46. (STARTUP    @app-name
  47.     (COMMAND
  48.         (CAT    "assign ace: \""BinDir"\" \n"
  49.                 "assign ACElib:     ACE:lib      ; bas finds scanned libraries here.\n"
  50.                 "assign ACEbmaps:   ACE:bmaps    ; ace looks here for .bmap files. \n"
  51.                 "assign ACEinclude: ACE:include  ; app uses this for include files.\n"
  52.                 "assign c: \""(TACKON BinDir "bin")"\" Add \n"
  53.         )
  54.     )
  55.     (PROMPT Addit)
  56.     (HELP   "")
  57. )
  58.  
  59. (RUN
  60.     (CAT    "assign ace: \""BinDir"\" \n"
  61.             "assign ACElib:     ACE:lib      ; bas finds scanned libraries here.\n"
  62.             "assign ACEbmaps:   ACE:bmaps    ; ace looks here for .bmap files. \n"
  63.             "assign ACEinclude: ACE:include  ; app uses this for include files.\n"
  64.             "assign c: \""(TACKON BinDir "bin")"\" Add \n"
  65.     )
  66. )
  67.